home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 5 / Apprentice-Release5.iso / Source Code / C / Applications / Telnet 2.7b5 / source / parse / authencrypt.h < prev    next >
Encoding:
Text File  |  1994-04-05  |  325 b   |  9 lines  |  [TEXT/CWIE]

  1. typedef struct codemodule {
  2.     struct codemodule *next;            /* pointer to next in list */
  3.     module entry;                        /* module entry point */
  4.     short npairs;                        /* number of type/modifier pairs */
  5.     Boolean encryptok;                    /* module does option 38 encryption */
  6.     unsigned short pairs[NTMPAIRS];        /* type/modifier pairs */
  7. } codemodule;
  8.  
  9.